Skip to content

IObserver interface

Defined in

Namespace: System.Reactive Assembly: System.Reactive.dll Full name: System.Reactive.IObserver<T1, T2> Modifiers: public abstract

Summary

        Provides a mechanism for receiving push-based notifications and returning a response.
        

Applies to

netstandard2.0

Methods

NameSummary
OnNextNotifies the observer of a new element in the sequence.
OnErrorNotifies the observer that an exception has occurred.
OnCompletedNotifies the observer of the end of the sequence.